home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-04-20 | 722 b | 17 lines | [TEXT/MPCC] |
- #include <iostream>
-
- void main (void)
- {
-
- cout << "Hello World, this is CodeWarrior!" << endl;
-
- cout << "This project uses the SIOUX console library: choose ‘Quit’ from the file menu to quit.\n\n";
-
- cout << "For more information on the ANSI Std C++ library, see the “C++ Library Reference” ";
- cout << "(a QuickView online database). \n\n";
- cout << "For ANSI C++, you must include additional libraries: an ANSI C library, SIOUX for console support, ";
- cout << "the MacOS/Interface library, a CPlusPlus glue library and a Math Library.\n\n";
-
- cout << "For more information on these libraries, and help locating the right ANSI libraries ";
- cout << "for your preferences, see the “CodeWarrior User's Guide”.\n\n";
- }